        .section-wrapper {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 60px 20px; */
            gap: 146px;
            justify-content: center;
            /* prevent equal height stretch */
        }

        .form-column,
        .info-column {
            flex: 1 1 500px;
            box-sizing: border-box;
            /* padding: 20px; */
            /* background-color: #1e293b; */
            border-radius: 10px;
        }

        .form-column {
            max-width: 488px;
            background-color: #ffffff;
            /* light background for entire form */
            max-height: fit-content;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            /* soft shadow to lift off black bg */
        }

        .form-heading {
            font-size: 33px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #0f172a;
            /* dark heading text */
        }

        .form-column-p{
            margin-top: -23px;
        }

        .form-textarea{
            height: 9vh;
        }

        .proposal-form input,
        .proposal-form textarea,
        .proposal-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            background-color: #f8fafc;
            /* very light gray */
            color: #0f172a;
            /* dark text */
            font-size: 16px;
        }

        .proposal-form input::placeholder,
        .proposal-form textarea::placeholder {
            color: #94a3b8;
            /* soft gray placeholder */
        }

        .proposal-form button {
            width: 100%;
            background-color: #0f172a;
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 48px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .proposal-form button:hover {
            background-color: #1e293b;
            /* slightly lighter hover */
        }

        .info-heading {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .info-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            /* margin-bottom: 20px; */
        }

        .info-summary,
        .info-details {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
        }

        .info-details {
            display: none;
            margin-top: 10px;
        }

        .toggle-read-btn {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 15px;
            text-decoration: underline;
            cursor: pointer;
            margin-top: 10px;
            padding: 0;
        }

        @media (max-width: 768px) {
            .section-wrapper {
                gap: 60px;
                flex-direction: column;
            }
        }

        .info-image {
            margin-bottom: 30px;
            max-width: 100%;
            height: auto;
        }

        .video-container {
            position: fixed;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .video-container iframe {
            width: 90vw;
            height: 50vw;
            max-width: 900px;
            max-height: 70vh;
            aspect-ratio: 16/9;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            background: #000;
            display: block;
        }

        .close-video {
            position: absolute;
            top: 32px;
            right: 32px;
            font-size: 2rem;
            color: #fff;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .section-split-layout {
            margin: 24px 71px;
            gap: 116px;
            display: flex;
            align-items: center;
        }

        .section-split-image {
            flex: 0.3;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            /* max-height: 350px; */
            /* Limit image height */
        }

        .section-split-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            /* Shows full image without cropping */
        }

        .section-split-content {
            flex: 0.7;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-title-2 {
            font-weight: 700;
            font-size: 1.75rem;
            /* Reduced from 2.5rem */
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1rem;
            /* Reduced from 1.2rem */
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .section-cta-button {
            padding: 0.75rem 1.5rem;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .section-cta-button:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-split-layout {
                flex-direction: column;
                gap: 20px;
                margin: 20px;
            }

            .section-split-image,
            .section-split-content {
                flex: none;
                width: 100%;
                height: auto;
            }

            .section-split-image img {
                width: 100%;
                height: auto;
                object-fit: contain;
            }

            .section-split-content {
                padding: 1rem;
            }

            .section-title-2 {
                font-size: 1.5rem;
            }

            .section-description {
                font-size: 0.95rem;
            }
        }